home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Laboratorio Interattivo Deagostini
/
laboratorio interattivo deagostini.bin
/
swf
/
168.swf
/
scripts
/
DefineSprite_49
/
frame_2
/
DoAction.as
Wrap
Text File
|
2003-01-06
|
2KB
|
59 lines
dimH = popup.scelta1._width;
dimV = popup.scelta1._height;
HSfondo = nScelte * (dimV + 1) + 1;
popup.sfondo._height = HSfondo;
popup.sfondo._width = dimH + 2;
popup.sfondo._x = 0;
popup.sfondo._y = 0;
popup.sinistra._x = 0;
popup.sinistra._y = 0;
popup.sinistra._width = 1;
popup.sinistra._height = HSfondo;
popup.destra._x = dimH + 1;
popup.destra._y = 0;
popup.destra._width = 1;
popup.destra._height = HSfondo;
popup.delimitatore._x = 1;
popup.delimitatore._y = 0;
popup.delimitatore._width = dimH;
var i = 0;
i = 1;
while(nScelte >= i)
{
nuovoNome = "delimitatore" + i;
percorso = "popup." + nuovoNome;
duplicateMovieClip(popup.delimitatore,nuovoNome,16384 + i);
eval(percorso)._x = 1;
eval(percorso)._y = i * (dimV + 1);
i += 1;
}
popup.scelta1._x = 1;
popup.scelta1._y = 1;
popup.scelta1.testo = lScelte[0];
var s = 0;
s = 2;
while(nScelte >= s)
{
nomeBottone = "scelta" + s;
pBottone = "popup." + nomeBottone;
duplicateMovieClip(popup.scelta1,nomeBottone,16384 + (s + 50));
eval(pBottone)._x = 1;
eval(pBottone)._y = (s - 1) * (dimV + 1) + 1;
eval(pBottone).testo = lScelte[s - 1];
s += 1;
}
bottom = risposta._y + risposta._height - 1 + HSfondo;
BottomPop = bottom + this._y - math.abs(_parent._y);
HBarra = _parent._parent.barratot._height;
YBarra = _parent._parent.barratot._y;
BottomBarra = YBarra + HBarra / 2;
popup._x = -1;
if(BottomBarra < BottomPop)
{
popup._y = risposta._y - HSfondo;
}
else
{
popup._y = risposta._y + risposta._height - 2;
}